home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / mscfunct / crt_rpix.c < prev    next >
C/C++ Source or Header  |  1987-05-09  |  226b  |  15 lines

  1. #include <dos.h>
  2.  
  3. int crt_read_pixel( x, y ) int x, y;
  4. {
  5.     union REGS regs;
  6.     
  7.     regs.h.ah = 13;
  8.     regs.x.dx = y;
  9.     regs.x.cx = x;
  10.     
  11.     int86( 0x10, ®s, ®s );
  12.  
  13.     return( (int)regs.h.al );
  14. }
  15.